StartPreciseCoverageRequest

data class StartPreciseCoverageRequest(callCount: Boolean?, detailed: Boolean?, allowTriggeredUpdates: Boolean?)

Represents request frame that can be used with Profiler#startPreciseCoverage operation call.

Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters.

See also

Constructors

StartPreciseCoverageRequest
Link copied to clipboard
fun StartPreciseCoverageRequest(callCount: Boolean? = null, detailed: Boolean? = null, allowTriggeredUpdates: Boolean? = null)

Properties

allowTriggeredUpdates
Link copied to clipboard
val allowTriggeredUpdates: Boolean? = null
Allow the backend to send updates on its own initiative
callCount
Link copied to clipboard
val callCount: Boolean? = null
Collect accurate call counts beyond simple 'covered' or 'not covered'.
detailed
Link copied to clipboard
val detailed: Boolean? = null
Collect block-based coverage.

Sources

jvm source
Link copied to clipboard